home *** CD-ROM | disk | FTP | other *** search
/ PC World Interactive 7 / PC World Interactive 7.iso / program / ctutor.exe / ANSWERS / CH02_3.C < prev    next >
C/C++ Source or Header  |  1994-05-15  |  238b  |  12 lines

  1. main()
  2. {
  3. int index;
  4.  
  5. /* index = 13; */
  6.    printf("The value of the index is %d\n", index);
  7.    index = 27;
  8.    printf("The value of the index is %d\n", index);
  9.    index = 10;
  10.    printf("The value of the index is %d\n", index);
  11. }
  12.